home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / time / RCS / Time_Add.c,v < prev    next >
Text File  |  1991-10-22  |  2KB  |  116 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     88.06.27.17.23.21;  author ouster;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.06.19.14.32.57;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.10.22.14.50.45;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.2
  30. log
  31. @Use spriteTime.h instead of time.h.
  32. @
  33. text
  34. @/* 
  35.  * Time_Add.c --
  36.  *
  37.  *    Source code for the Time_Add library procedure.
  38.  *
  39.  * Copyright 1988 Regents of the University of California
  40.  * Permission to use, copy, modify, and distribute this
  41.  * software and its documentation for any purpose and without
  42.  * fee is hereby granted, provided that the above copyright
  43.  * notice appear in all copies.  The University of California
  44.  * makes no representations about the suitability of this
  45.  * software for any purpose.  It is provided "as is" without
  46.  * express or implied warranty.
  47.  */
  48.  
  49. #ifndef lint
  50. static char rcsid[] = "$Header: Time_Add.c,v 1.1 88/06/19 14:32:57 ouster Exp $ SPRITE (Berkeley)";
  51. #endif not lint
  52.  
  53. #include <sprite.h>
  54. #include <spriteTime.h>
  55.  
  56.  
  57. /*
  58.  *----------------------------------------------------------------------
  59.  *
  60.  * Time_Add --
  61.  *
  62.  *      Adds two time values together. 
  63.  *
  64.  * Results:
  65.  *     The sum of the 2 arguments.
  66.  *
  67.  * Side effects:
  68.  *     None.
  69.  *
  70.  *----------------------------------------------------------------------
  71.  */
  72.  
  73. void
  74. Time_Add(time1, time2, resultPtr)
  75.     Time             time1;
  76.     Time          time2;
  77.     register    Time *resultPtr;
  78. {
  79.     resultPtr->seconds      = time1.seconds      + time2.seconds;
  80.     resultPtr->microseconds = time1.microseconds + time2.microseconds;
  81.  
  82.     /*
  83.      *  Normalize the microseconds portion to be less than 1 million.
  84.      */
  85.     if (resultPtr->microseconds >= ONE_SECOND) {
  86.     resultPtr->seconds     += 1;
  87.     resultPtr->microseconds -= ONE_SECOND;
  88.     }
  89. }
  90. @
  91.  
  92.  
  93. 1.2.1.1
  94. log
  95. @Initial branch for Sprite server.
  96. @
  97. text
  98. @d17 1
  99. a17 1
  100. static char rcsid[] = "$Header: /sprite/src/lib/c/time/RCS/Time_Add.c,v 1.2 88/06/27 17:23:21 ouster Exp $ SPRITE (Berkeley)";
  101. @
  102.  
  103.  
  104. 1.1
  105. log
  106. @Initial revision
  107. @
  108. text
  109. @d17 1
  110. a17 1
  111. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  112. d21 1
  113. a21 1
  114. #include "time.h"
  115. @
  116.